UPDATE (5/29/2025): Did some testing in a fishing spot and found that some of the info in this guide was off.  The starting offset was off by 2 bytes, and the fish Stamina/Strength byte was moved from the end of the data to the beginning.  Have fixed below it and should be correct now.

Although these fish stats are not included in the PS1 editor, they are included in my Breath of Fire IV GOG 2025 PC editor (can find it on my site: https://codehut.gshi.org/BoF4PC.html).



Breath of Fire 4 (PS1) quick guide on how to find and edit fish stats.  By Tony H.  11/21/2023

Fish stats covered here: Strength/Stamina, Length for max point bonus, bonus points, bait that the fish likes/dislikes.  There is other data in the table that I haven't mapped yet.

Other fishing stuff that can be found in my BoF4 editor: Points required for fishing ranks, what kind of fish (and how many) can be caught in the different fishing locations.

You'll need to use a hex editor to find and edit this stuff below.  Note that there are 12 occurrences of this table in the ROM.  Most likely for the 12 different fishing locations.  Most/all online guides only show 11 fishing locations, but there are actually 12 in the ROM.  It appears that there are two different versions on the "Ocean Spot 3" location.

Note that I've tested some of this stuff, but can't gaurantee it's correct.  I did lots of testing for similar stats on Breath of Fire 3, so I'm basing some of this on those tests.

This guide will use the "Breath of Fire IV (USA) (Track 1).bin" ROM.  It seems to be the only USA version there is on every ROM site I went to.


The first fish stat table starts at 0x119641D2.  To make sure you're in the right spot, these are the first 8 bytes that should be there: 001E1E00500000.  PlayStation ROMs use little endian (reversed bytes).

Each fish gets 0x3A bytes.  You can see the order of the fish by looking at the plain text in the ROM at this address: 0x0DE16BA8.  It starts with the Jellyfish, then the Piranha, etc.  It looks like some of the fish are listed more than once in the fish stat table.  Not sure yet if the stats are different for those or not.

Jellyfish stats start at 0x119641D2...

* The 1st byte is unknown, always 00?
* The 2nd byte seems to be for Stamina/Strength (have tested this and seems to be correct).
* The next 2 bytes are for the max size to get the bonus points.
* The next 2 bytes are for the number of points you get.
* The next 6 bytes appear to be for what type of bait that fish likes or dislikes.  There are 20 different types of bait, but I think they get bunched into 6 different groups.  A value of 0xFF means the fish won't bite it.  Other values determine how much they like it.  I think lower values mean they like it more (0 = they love it).  Have tested some of this and seems correct.  See notes for this below.
* There are several bytes next that I haven't mapped yet.

Piranha is next and starts at 0x1196420C and follows the same format, and the rest of the fish follow.

These should be the 6 different types of bait mentioned above (not sure about the order):
Spinner
Winder
Topper
Minnow
Frogger
Worm

You can find out more about these 6 groups of bait here: 
https://gamefaqs.gamespot.com/ps/196818-breath-of-fire-iv/faqs/9833

Important: There are a few places where the table gets interrupted by some unrelated data (sector data).  This first 'unrelated' data starts at 0x119643F8 and is 0x130 bytes long.  The fish stat table continues after the 0x130 bytes.  The data within this 0x130 bytes has nothing to do with the table, so just ignore it.
